body, html {
    margin: 0;
    padding: 0;
}

header {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*Header + Navigation---------------------------------------------------------------------------------------------*/
/* Header Container */
.header-container {
    display: flex;
    height: 4rem;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.burger-container { 
    margin-left: 2rem;
    width: 1.75rem;
    height: 1.25rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 0.5rem;
    caret-color: transparent;
    z-index: 5;
}

/* Individual burger bars */
.burger-bar {
    width: 100%;
    height: 0.175rem;
    background-color: rgb(255, 255, 255);
    transition: all 0.3s ease-in-out;
}

.burger-container.active .burger-bar:nth-child(1) {
    transform: translateY(0.54rem) rotate(45deg);
}

.burger-container.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-container.active .burger-bar:nth-child(3) {
    transform: translateY(-0.54rem) rotate(-45deg);
}

/*MENU------------------------------------------*/
.menu-overlay {
    display: none;
}

.phmenucapslide2{
    display: none;
}

.logo-container {
    position: absolute;
    margin-right: 2rem;
    margin-left: 5rem;
    top: 1rem;
    align-items: center;
    z-index: 10;
}

.logo {
    width: 7rem;
    height: auto;
}

/* Navigation ---------------------------*/
.nav-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.nav-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    
}

.nav-container ul li {
    padding: 1.23rem 1rem;
    display: inline-block;
    cursor: pointer;
    position: relative;
    transition: color 0.5s ease, border-color 0.5s ease;
    white-space: nowrap;   
}

.downarrow{
    width: 1rem;
    height: auto;
    margin-left: 0.5rem;
    margin-bottom: 0;
    transition: transform 0.5s ease-in-out;
}


.nav-container ul li a {
    text-decoration: none;
    color: rgb(255, 255, 255); 
    font-weight: 300;
    font-size: 0.9rem;
    transition: color all 0.3s ease;
}

.nav-container ul li:hover a {
    color: rgb(255, 255, 255);
}

.nav-container ul li:hover {
    border-bottom: 2px solid rgb(255, 255, 255);
}

.nav-container ul li:last-child {
    margin-right: 0;
}

/* Search */
.search-container {
    position: absolute;
    right: 2rem;
    z-index: 4;
}

.search-icon {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.4rem;
}

.search-input-container {
    position: absolute;
    left: 0rem;
    right: 0rem;
    top: 0;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(0, 6, 40);
    padding: 0rem 2rem 0rem 2rem;
    opacity: 0;
    visibility: hidden;
    z-index: 12;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 6, 40);
    z-index: inherit;
}

.cancel-icon {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    right: 1rem;
    margin-right: 2rem;
    margin-top: 0rem;
    padding: 0;
    caret-color: transparent;
    z-index: 13;
}

.search-input-container.active {
    opacity: 1;
    visibility: visible;
}

.nav-container.hidden {
    display: none;
}


@media (max-width: 480px){
.title-container {
    display: none;
    }

    .logo-container {
    padding-left: 0rem;
    padding-top: 0.25rem;
    margin-left: 2rem;
    }

    .logo {
        width: 7rem;
        height: auto;
    }
    
    .burger-container {
    position: absolute;
    right: 1.75rem;
    top: 1.125rem
    }
    
    .search-container {
        right: 4.5rem;
    }

    .search-icon {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0.4rem;
    }

    .search-input-container {
        position: absolute;
        left: 0;
        right: 0;
        padding: 0 1rem;
    }

    .search-input{
    border-color: transparent;
    }

    .cancel-icon{
        top: 1.125rem;
        right: 0rem;
        margin-right: 2rem
    }

    .nav-container{
    display: none;
    }
}

/*---------------------------------------------------*/
@media screen and (max-width: 1179px) {
    /* Menu overlay - Background and general overlay styles */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(240 240, 240);
        z-index: 4;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out;
        display: unset;
    }

    /* Overlay visibility toggle */
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        transition-delay: 0.1s;
    }

    /* Common slide styles */
    .menu-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transition: transform 0.3s ease-in-out;
        background-color: rgb(240, 240, 240); 
        overflow-y: auto;
        z-index: 3;
    }

    /* Active slide - slides in from left */
    .menu-slide.active {
        transform: translateX(0);
    }
    .menu-content1{
        padding: 5rem 0;
    }

    .menu-content1 ul{
        list-style-type: none;
    }

    .menu-content li {
        margin-bottom: 0;
    }

    .main-menu-item{
        text-decoration: none;
        color: rgb(255, 255, 255);
        font-size: 1rem;
        display: block;
        padding: 1rem 0;
    }

    /* Slide Header Styles */
    .slide-menu-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 2rem;
        background-color: transparent;
        border-bottom: 1px solid #eee;
    }
    .slide-menu-logo {
        max-width: 150px;
        margin-bottom: 1rem;
    }
    .slide-search-container {
        margin-bottom: 1rem;
        width: 100%;
    }
    .slide-search-container input {
        width: 100%;
        padding: 0.5rem;
        border: 1px solid #eee;
        border-radius: 1px;
        z-index: 6;
    }
    .slide-back-button,
    .slide-back-button-2,
    .slide-back-button-3,
    .slide-back-button-4,
    .slide-back-button-5,
    .slide-back-button-6,
    .slide-back-button-7,
    .slide-back-button-1s,
    .slide-back-button-2s,
    .slide-back-button-3s,
    .slide-back-button-4s,
    .slide-back-button-5s,
    .slide-back-button-6s,
    .slide-back-button-7s,
    .slide-back-button-8s,
    .slide-back-button-9s,
    .slide-back-button-10s,
    .slide-back-button-11s,
    .slide-back-button-12s,
    .slide-back-button-13s,
    .slide-back-button-1t,
    .slide-back-button-1a{
        margin-top: 7rem;
        display: flex;
        align-items: center;
        cursor: pointer;
        color: rgb(0, 6, 40);
        z-index: 10;
    }
    .slide-back-arrow {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
        rotate: 180deg;
        z-index: 10;
    }

    /* Slide Title */
    .slide-title {
        padding: 1rem 0;
        font-size: 1.375rem;
        color: rgb(0, 6, 40);
        margin: 0;
        border-bottom: 1px solid rgba(190, 190, 190, 1);
        width: 100%;
        font-family: 'Lora';
    }

    .phmenuslide1{
        background-color: rgb(0, 6, 40);
        z-index: 5;
        transform: translateX(100%); 
        transition: transform 0.3s ease-in-out;
    }

    .phmenuslide1.active{
        transform: translateX(0);
    }
    .phmenucapslide2,
    .phmenusecslide2,
    .phmenutrgslide2,
    .phmenuabtslide2{
        background-color: rgb(240 240, 240);
        z-index: 6;
        height: 100%;
        padding: 0rem;
        transition: transform 0.3s ease-in;
        transform: translateX(-100%);
        display: unset;
    }

    .phmenucapslide2.active,
    .phmenusecslide2.active,
    .phmenutrgslide2.active,
    .phmenuabtslide2.active {
        transform: translateX(0);
    }
    
    .phmenucapslide2,
    .phmenusecslide2,
    .phmenutrgslide2,
    .phmenuabtslide2{
        transform: color;
    }

    .phmenucapslide2 ul li,
    .phmenusecslide2 ul li,
    .phmenutrgslide2 ul li,
    .phmenuabtslide2 ul li{
        padding: 0.5rem 0;
        color: rgb(0, 6, 40);
    }

    .oemenucapslide3,
    .cmmenucapslide3,
    .odmenucapslide3,
    .pmmenucapslide3,
    .scmenucapslide3,
    .ormenucapslide3,
    
    .mimenusecslide3,
    .eemenusecslide3,
    .afmenusecslide3,
    .rcmenusecslide3,
    .hpmenusecslide3,
    .crmenusecslide3,
    .fsmenusecslide3,
    .tlmenusecslide3,
    .etmenusecslide3,
    .tdmenusecslide3,
    .thmenusecslide3,
    .psmenusecslide3{
        background-color: rgb(240, 240, 240);
        height: 100%;
        padding: 0;
        z-index: 7;
        position: absolute;
        left: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .oemenucapslide3.active,
    .cmmenucapslide3.active,
    .odmenucapslide3.active,
    .pmmenucapslide3.active,
    .scmenucapslide3.active,
    .ormenucapslide3.active,
    
    .mimenusecslide3.active,
    .eemenusecslide3.active,
    .afmenusecslide3.active,
    .rcmenusecslide3.active,
    .hpmenusecslide3.active,
    .crmenusecslide3.active,
    .fsmenusecslide3.active,
    .tlmenusecslide3.active,
    .etmenusecslide3.active,
    .tdmenusecslide3.active,
    .thmenusecslide3.active,
    .psmenusecslide3.active{
        transform: translateX(0);
    }

    
    .phmenucapslide2 .slide-menu-item,
    .phmenusecslide2 .slide-menu-item,
    .phmenutrgslide2 .slide-menu-item,
    .phmenuabtslide2 .slide-menu-item,
    
    .oemenucapslide3 .slide-menu-item,
    .cmmenucapslide3 .slide-menu-item,
    .odmenucapslide3 .slide-menu-item,
    .pmmenucapslide3 .slide-menu-item,
    .scmenucapslide3 .slide-menu-item,
    .ormenucapslide3 .slide-menu-item,
    
    .mimenusecslide3 .slide-menu-item,
    .eemenusecslide3 .slide-menu-item,
    .afmenusecslide3 .slide-menu-item,
    .rcmenusecslide3 .slide-menu-item,
    .hpmenusecslide3 .slide-menu-item,
    .crmenusecslide3 .slide-menu-item,
    .fsmenusecslide3 .slide-menu-item,
    .tlmenusecslide3 .slide-menu-item,
    .etmenusecslide3 .slide-menu-item,
    .tdmenusecslide3 .slide-menu-item,
    .thmenusecslide3 .slide-menu-item,
    .psmenusecslide3 .slide-menu-item {
        text-decoration: none;
        color: rgb(0, 6, 40);
        font-size: 1rem;
        display: block;
        padding: 1rem 0;
    }

    .menu-content2 ul{
        list-style: none;
        padding: 0;
        margin: 0;
        z-index: 1;
    }

    .menu-content2 ul li{
        padding: 0;
        color: rgb(0, 6, 40);
    }

    .menu-content2 ul li a{
        text-decoration: none;
        color: rgb(0, 6, 40);
        font-size: 1rem;
    }

    /* Overlay Scroll Control */
    body.menu-open {
        overflow: hidden;
    }

    .slidechevron{
        position: absolute;
        width: 1rem;
        height: 1rem;
        right: 2rem;
    }

    .recslide2{
        position: fixed;
        top: 0;
        height: 4rem;
        width: 100%;
        background-color: rgb(0, 6, 40);
        z-index: 10;
    }
}

/*Menu Items-----------------------------------------------------------------*/
.menu-navigation, 
.menu-capabilities-page-1, 
.menu-sectors-page-1, 
.menu-trainings-page-1, 
.menu-about-us-page-1 {
    position: fixed;
    top: 0rem;
    left: 0;
    width: 20rem;
    height: 100vh;
    background-color: rgb(0, 6, 40);
    display: none;
    flex-direction: column;
    padding: 1rem 2rem;
    overflow-y: auto;
    box-sizing: border-box;
    caret-color: transparent;
    z-index: 4;
}

.menu-navigation.active a,
.menu-navigation.active {
    display: block;
}


.menu-item,
.menu-navigation a .text-wrapper {
    color: white;
    font-size: 0.9rem;
    padding: 0.375rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 200;
}

.menu-navigation a:first-child {
    margin-top: 6.75rem;
}

.menu-item .text-wrapper,
.menu-navigation a .text-wrapper {
    transition: transform 0.3s ease;
}

.menu-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 50%;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.menu-item:hover::before {
    width: 1rem;
}

.menu-item:hover .text-wrapper {
    transform: translateX(1.5rem);
}

.menu-item img.arrow-icon {
    width: 1rem;
    height: auto;
    transition: none;
}

.menu-navigation a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.menu-item img.arrow-icon {
    width: 1rem;
    height: auto;
}

/*Menu Capabilities Page 1----------------------------------------------------------------------*/
.menu-capabilities-page-1, 
.menu-sectors-page-1, 
.menu-trainings-page-1, 
.menu-about-us-page-1  {
    top: 0;
    left: 20rem;
    width: calc(100% - 20rem);
    height: 100vh;
    background-color: rgb(240, 240, 240);
    padding: 1rem 2rem;
    z-index: 4;
}

/* Input section */
input[type="text"] {
    width: 100%;
    padding: 20px 20px;
    margin: 4px 0;
    box-sizing: border-box;
    border: 1px solid rgb(0, 6, 40);
    border-radius: 1px;
    transition: border-color 0.3s ease-in-out;
    caret-color: rgb(0, 0, 255);
    font-size: 1rem;
    color: rgb(0, 6, 40);
}

input[type="text"]:focus {
    border-color: rgb(0, 6, 40);
    outline: none;
    caret-color: rgb(0, 0, 255)
}

.menu-capabilities-page-1-input, 
.menu-sectors-page-1-input, 
.menu-trainings-page-1-input, 
.menu-about-us-page-1-input {
    margin-bottom: 20px;}

/* Back arrow and text */
.menu-capabilities-page-1-back-section, 
.menu-sectors-page-1-back-section, 
.menu-trainings-page-1-back-section, 
.menu-about-us-page-1-back-section  {
    display: flex;
    align-items: center;
    gap: 1rem; 
    margin-top: 3rem;
    cursor: pointer;
}

.menu-capabilities-page-1-back-arrow, 
.menu-sectors-page-1-back-arrow, 
.menu-trainings-page-1-back-arrow, 
.menu-about-us-page-1-back-arrow  {
    width: 1rem;
    height: auto;
    rotate: 180deg;
}

.menu-capabilities-page-1-back-section span, 
.menu-sectors-page-1-back-section span, 
.menu-trainings-page-1-back-section span, 
.menu-about-us-page-1-back-section span  {
    font-size: 1rem;
    color: rgb(0, 6, 40);
}

/* Page title */
.menu-capabilities-page-1-title, 
.menu-sectors-page-1-title, 
.menu-trainings-page-1-title, 
.menu-about-us-page-1-title  {
    margin-top: 2rem;
    font-size: 1.375rem;
    color: rgb(0, 6, 40);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(210, 210, 210);
    font-family: 'Lora';
    font-weight: 700;
}

/* Grid of capabilities */
.menu-capabilities-page-1-grid, 
.menu-sectors-page-1-grid, 
.menu-trainings-page-1-grid, 
.menu-about-us-page-1-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.menu-about-us-page-1-grid  a{
    text-decoration: none;
}

/* Styling for each capability item */
.menu-capabilities-page-1-item::before,
.menu-sectors-page-1-item::before,
.menu-trainings-page-1-item::before,
.menu-about-us-page-1-item::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 50%;
    height: 2px;
    width: 0;
    background-color: rgb(0, 0, 255);
    transition: width 0.3s ease;
}

.menu-capabilities-page-1-item:hover::before,
.menu-sectors-page-1-item:hover::before,
.menu-trainings-page-1-item:hover::before,
.menu-about-us-page-1-item:hover::before {
    width: 1rem;
}

.menu-capabilities-page-1-item, 
.menu-sectors-page-1-item, 
.menu-trainings-page-1-item, 
.menu-about-us-page-1-item  {
    font-size: 0.9rem;
    color: rgb(0, 6, 40);
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out; 
    font-weight: 300; 
}

.menu-capabilities-page-1-item .text-wrapper,
.menu-sectors-page-1-item .text-wrapper,
.menu-trainings-page-1-item .text-wrapper,
.menu-about-us-page-1-item .text-wrapper {
    transition: transform 0.3s ease;
}

.menu-capabilities-page-1-item:hover .text-wrapper,
.menu-sectors-page-1-item:hover .text-wrapper,
.menu-trainings-page-1-item:hover .text-wrapper,
.menu-about-us-page-1-item:hover .text-wrapper{
    transform: translateX(1.5rem);
}

.menu-capabilities-page-1-item a, 
.menu-sectors-page-1-item a, 
.menu-trainings-page-1-item a, 
.menu-about-us-page-1-item a {
    color: inherit;
    text-decoration: none;
}

.menu-capabilities-page-1-item:hover, 
.menu-sectors-page-1-item:hover, 
.menu-trainings-page-1-item:hover, 
.menu-about-us-page-1-item:hover  {
    color: rgb(0, 0, 255);
    font-weight: 700;
}

.menu-capabilities-page-1, 
.menu-sectors-page-1, 
.menu-trainings-page-1, 
.menu-about-us-page-1 {
    display: none;
    position: fixed;
}

.menu-capabilities-page-1.active, 
.menu-sectors-page-1.active, 
.menu-trainings-page-1.active, 
.menu-about-us-page-1.active {
    display: block;
}

@media only screen and (max-width: 480px) { 
    .menu-navigation, 
    .menu-capabilities-page-1, 
    .menu-sectors-page-1, 
    .menu-trainings-page-1, 
    .menu-about-us-page-1 {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}

/*Hero Section-------------------------------------------------*/
.hero-section {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background-color: rgb(143, 150, 230);
    line-height: 1.75;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    position:absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1);
    object-position: 100% 80%;
}

.hero-text-container {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(0.125rem);
    border-radius: 0.5rem;
    padding: 1rem;
    left: 4rem;
    text-align: left;
    top: 30%;
    width: 40rem;
    z-index: 3;
    color: rgb(255, 255, 255);
}

.hero-text-container h2 {
    font-size: 2.5rem;
    font-family: 'Lora';
    line-height: 1;
    text-shadow: 0 0 4px rgb(0, 0, 0);
    margin-top: 0.5rem;
}

.hero-text-container h7 {
    font-size: 1rem;
    font-weight: 400;
    color: rgb(180, 180, 180);
    line-height: 2;
}

.hero-text-container h3 {
    font-size: 1.5rem;
    font-family: 'Lora';
    font-style: italic;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 1.5;
}

.hero-text-container p {
    font-size: 1.25rem;
    line-height: 1.75;
}

/*Hero Section Media Code-------------------------------------------------*/
@media only screen and (max-width: 480px) {
    .hero-section {
        height: 90vh;
    }

    .hero-rec{
        bottom:0;
        height: 45vh;
        width: 100%;
        background-color: rgb(240, 240, 240);
        z-index:2;
        position: absolute;
    }

    .hero-text-container {
        top: 50%;
        left: 2rem;
        width: 85%;
        color: rgb(0, 0, 0);
    }

    .hero-text-container h2 {
        font-size: 1.5rem;
        font-family: 'Lora';
        font-weight: 700;
        text-shadow: none;
    }

    .hero-text-container h3 {
        font-size: 1.125rem;
        font-weight: 400;
        color: rgb(150, 150, 150);
        line-height: 1.75;
    }
    
    .hero-text-container p {
        font-size: 1rem;
        font-weight: 200;
    }

    .hero-image {
        height: 50%;
        background-size: cover;
        overflow: hidden;
        object-position: 30% 90%;

    }
}

@media only screen and (max-width: 389px) {
    .hero-text h2 {
        font-size: 1.2rem;
        line-height: 1.75;
        text-shadow: none;
    }

    .hero-text p {
        font-size: 0.9rem;
        line-height: 2;
        text-shadow: none;
    }
}

/*Intro Section ----------------------------------------------------------------------------------*/
.intro{
    padding: 2rem 5rem;
}
.intro-title-contain{
    padding: 0;
}

.intro-title-box {
    padding: 0;
}

.intro-title-box h1 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.75;
    font-weight: 300;
    text-align: center;
}
.intro-line {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.intro-text-container {
    padding: 0rem 5rem;
    column-count: 2;
    column-gap: 2rem; 
}

.intro-text-container p {
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 200;
    padding-top: 0.5rem;
    margin: 0;
}

/*INTRO ----------- Media codes------------------------------------------------------------------------------------------*/
@media (max-width: 1024px) {
    .intro-title-container {
      margin: 0 5rem;
    }
  
    .intro-title-box h1 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .intro-line {
      margin: 1rem 4.5rem;
    }
  
    .intro-text-container {
      padding: 0rem 10rem;
    }
  
    .intro-text-container p {
      font-size: 1rem;
      line-height: 1.75;
    }
  }
  

@media (max-width: 900px) {
    .intro-title-container {
      margin: 0;
    }
  
    .intro-title-box h1 {
      font-size: 1.5rem;
      text-align: center;
    }
  
    .intro-line {
      margin: 1rem 4rem;
    }
  
    .intro-text-container {
      padding: 0rem 7rem;
    }
  
    .intro-text-container p {
      font-size: 1rem;
      line-height: 1.75;
    }
  }
  

@media (max-width: 768px) {

    .intro {
        margin: 0rem;
        padding: 1rem 2rem;
    }
    
    .intro-title-container {
        margin: 0rem;
    }
    .intro-title-box h1 {
        font-size: 1.375rem;
        text-align: left;
        padding:0;
    }

    .intro-line {
        margin: 1rem 0rem;
    }


    .intro-text-container {
        padding: 0rem 0rem;
        column-count: 1;
    }

    .intro-text-container p {
        font-size: 1.125rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .intro{
        padding: 0 2rem;
    }
    .intro-title-container {
        padding: 0;
        margin: 0;    
    }

    .intro-title-box {
        padding: 1rem 0rem;
    }
  
    .intro-title-box h1 {
        font-size: 1.25rem;
        font-weight: 600;
        text-align: left;
        padding: 0;
    }
  
    .intro-line {
        margin: 0;
    }
  
    .intro-text-container {
        padding: 0 0 2rem 0;
        column-count: 1;
    }
  
    .intro-text-container p {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

/* Our valueprop Section ------------------------------------------------ */
.valueprop-section {
    padding: 1rem 5rem;
    background-color: rgb(255, 255, 255);
    line-height: 1.75;
    padding-bottom: 2rem;
}

.valueprop-heading {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Lora';
}

.valueprop-layout {
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
    align-items: stretch;
}

.valueprop-image-container {
    width: 50%;
    height: 40rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valueprop-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
    object-position: 0 80%;
}

.valueprop-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background-color: rgb(250, 250, 250)
}

.valueprop-item {
    padding: 1rem;
    background-color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.valueprop-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.valuepropicon {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
}

.valueprop-text-content {
    flex-grow: 1;
}

.valueprop-item h3 {
    margin-top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Lora';
    text-align: left;
}

.valueprop-item p {
    font-size: 1rem;
    font-weight: 200;
    text-align: left;
    margin: 0;
}

/* Mobile Responsive Styles ----------------------------*/
@media (max-width: 480px) {
    .valueprop-section {
        padding: 1rem 1rem;
    }
    
    .valueprop-layout {
        flex-direction: column;
        padding-right: 2rem;
    }

    .valueprop-image-container,
    .valueprop-container {
        width: 100%;
        padding: 0 1rem;
    }

    .valueprop-image-container img {
        object-position: 0 60%;
    }

    .valueprop-content{
        flex-direction: column;
    }

    .valueprop-item h3,
    .valeprop-item p {
        text-align: center;
    }

    .valueprop-image-container {
        width: 100%;
        height: 20rem;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}


/*Client Gains-------------------------------------------------------------------------------------------------------------------------------------*/
.client-gains-section {
    margin: 0 0;
}

.heading-container {
    margin: 0 5rem;
    text-align: left;
}

.heading-container h2 {
    font-size: 1.75rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: rgb(0, 0, 0);
    font-family: 'Lora';
}

.metrics-container {
    display: flex;
    justify-content: space-between;
    margin: 0 4rem;
    padding: 20px 0;
    position: relative;
}

.metric-item {
    text-align: center;
    position: relative;
    flex: 1;
    padding-left: 1rem;
}

.metric-number {
    font-size: 3rem;
    font-weight: 500;
    color: rgb(0, 0, 255);
    margin-bottom: 1rem;
    margin-top: 3rem;
    font-family: 'Lora';
}

.metric-text {
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 200;
    color: rgb(0, 0, 0);
    padding-bottom: 6rem;
}

.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: calc(100% - 1rem);
    background-color: #ccc;
}

/*Media Responsiveness---*/
@media (max-width: 900px) {

    .heading-container {
        margin: 0 1rem;
        text-align: center;
    }
    .metrics-container {
      flex-direction: column;
      margin: 0 1rem;
      align-items: center;
    }
  
    .metric-item {
      padding: 0;
      margin: 0;
      margin-bottom: 2rem;
      position: relative;
      text-align: center;
    }

    .metric-item:not(first-child)::before {
        content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background-color: rgb(240, 240, 240);
      margin-bottom: 0;
      padding-bottom: 0;
      }

    .metric-item:not(:last-child)::after {
        display: none;
    }
  
    .metric-number {
      font-size: 2.5rem;
      margin-top: 0rem;
    }
  
    .metric-text {
      font-size: 1rem;
      padding-bottom: 1rem;
    }
  }

/*How we do it-------------------------------------------------------------------------------------------------------------*/
.how-we-do-it {
    background-color: rgb(250, 250, 250);
    padding: 2rem 5rem;
    caret-color: transparent;
}

.how-we-do-it-title {
    color: rgb(0, 0, 0);
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Lora';
    align-items: center;
    text-align: center;
    padding: 0rem 0 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);

}

.step-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
}

.step-box {
    width: calc (100% / 3);
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 0;
}

.step-label {
    font-size: 1rem;
    font-weight: 200;
}

.step-title {
    font-size: 1.125;
    margin: 1rem 0;
    font-family: 'Lora';
}

.step-number-container {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.25rem;
    font-weight: 500;
    color: rgb(0, 0, 255);
    background-color: rgb(250, 250, 250);
    margin: 0 auto;
    transition: all 0.3s ease;
}

.step-box:hover .step-number {
    background-color: rgb(0, 0, 255);
    color: rgb(255, 255, 255);
    transform: scale(1.3);
    border-color: rgb(0, 0, 255);
}

.step-description {
    font-size: 1rem;
    margin-top: 1rem;
    padding-bottom: 2rem;
    line-height: 2;
    font-weight: 200;
}

/*Media Codes-------------------------------------------------------------------------------------------------------------*/
@media (min-width: 769px) and (max-width: 900px) {
    .how-we-do-it{
        padding: 0 1rem;
    }

    .step-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, auto); 
      gap: 0.5rem;
      margin-right: 0;
    }
  
    .step-box {
      width: 100%;
      padding: 0;
    }
  
    .step-number {
      width: 45px;
      height: 45px;
      line-height: 45px;
      font-size: 1.2rem;
    }
    .step-description {
        font-size: 1rem;
    }
  }
  

@media (max-width: 768px) {
    .how-we-do-it {
        background-color: rgb(0, 6, 40);
        padding: 0 2rem;
    }

    .how-we-do-it-title{
        padding: 3rem 0;
    }

    .step-container {
      flex-direction: column;
      gap: 1rem;
    }
  
    .step-box {
      width: 100%;
      padding: 0;
    }

    .step-box:last-child{
        margin-bottom: 2rem;
    }
  
    .step-number {
      width: 50px;
      height: 50px;
      line-height: 50px;
      font-size: 1.125rem;
    }
    .step-description {
        font-size: 1rem;
        margin: 0;
    }
}

/*Page Image Section ------------------------------------------------------------------------------------------------------ */
.page-image {
    padding: 3rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    overflow: hidden;
}

.page-image .image-container {
    width: 100vw;
    height: 50vh;
    position: relative;
    border-radius: 0.5rem;
}

.page-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: 0 20%;
}

/*How we help Clients-------------------------------------------------------------------------------------------------------*/
.our-solutions-section {
    padding-left: 5rem;
    padding-right: 5rem;
    background-color: rgb(250, 250, 250);
    border-top: 2px rgb(0, 0, 0);
  }

.our-solutions-title {
    font-size: 1.75rem;
    text-align: center;
    font-family: 'Lora';
    font-weight: 700;
    margin-top: 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

.our-solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0.5rem;
    padding-bottom: 2rem;
}

.our-solutions-grid-cell {
    padding: 0 1rem;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: rgb(255, 255, 255);
}

.our-solutions-grid-cell-content h3{
    margin-top: 1rem;
    padding-bottom: 0;
    line-height: 1.75;
    font-weight: 600;
    font-family: 'Lora';
}
  
.our-solutions-grid-cell-content p{
    line-height: 1.75;
    font-size: 1rem;
    font-weight: 200;
    margin-top: -1rem;
}

/*Media Responsiiveness*/
@media (max-width: 1200px) {
    .our-solutions-title {
        font-size: 1.5rem;
        text-align: left;
        margin-left: 0rem;
    }

    .our-solutions-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, auto);
    }

    .our-solutions-section {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 900px) {

    .our-solutions-title {
        font-size: 1.5rem;
        text-align: left;
        margin-left: 0;
    }

    .our-solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }

    .our-solutions-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 768px) {

    .our-solutions-title {
        font-size: 1.5rem;
        text-align: left;
        margin-left: 0;
    }

    .our-solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }

    .our-solutions-section {
        padding-left: 1rem;
        padding-right: 1rem;
    
    }
}

@media (max-width: 480px) {

    .our-solutions-title {
        font-size: 1.5rem;
        text-align: left;
        margin-left: 0;
    }

    .our-solutions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }

    .our-solutions-section {
        padding-left: 1rem;
        padding-right: 1rem;
    
    }

      
    .our-solutions-grid-cell-content p{
        line-height: 1.75;
        font-size: 1rem;
    }
}
 

  
/*Connect with us------------------------------------------------*/
.connect-section {
    display: flex;
    line-height: 1.75;
    height: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    flex-direction: column;
}

.connect-section::before,
.connect-section::after {
    content: '';
    display: block;
    width: calc(100% - 10rem);
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.connect-section h2 {
    color: rgb(0, 0, 0);
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 0;
    font-family: 'Lora';
}

.connect-section p {
    color: rgb(0, 0, 0);
    font-size: 1.375rem;
    padding: 0 10rem;
    font-weight: 300;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    gap: 0.5rem;
    padding: 0.75rem 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Public sans';
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 255);
    border: 2px solid rgb(0, 0, 255);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button svg {
    font-size: 1.25rem;
    width: 1.75rem;
    height: auto;
    fill: rgb(255, 255, 255);
    transition: fill 0.3s ease;
}

.contact-button:hover svg {
    fill: rgb(0, 0, 0);
}

.contact-button:hover {
    background-color: transparent;
    color: rgb(0, 0, 0);
    border: 2px solid rgb(0, 0, 0);
}

/*Media Code-------------------------------*/
@media (max-width: 480px) {
    .connect-section {
        padding: 1rem;
        height: auto;
        text-align: center;
        line-height: 1.75;
    }

    .connect-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-button {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        gap: 0.25rem;
        margin: 1rem 0 3rem 0;
    }

    .contact-button svg {
        font-size: 1rem;
        width: 1.5rem;
    }
}

/*Contact Us-----------------------------------------------------------------------------------------------------------*/
.contacts-section {
    height: auto;
    display: flex;
    background-color: rgb(240, 240, 240);
    color: rgb(0, 0, 0);
    position: relative;
}

.top-left-container {
    background-color: transparent;
    width: 50%;
    height: auto;
    padding-left: 5rem;
    padding-right: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.top-right-container {
    display: flex;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 5rem;
    background-color: transparent;
    width: calc(50% - 5rem);
    overflow: hidden;
}

.contacts-section::after {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: rgba(0, 6, 40, 0.0);
}

.bottom-logo {
    width: 9rem;
    padding-top: 2rem;
}

.message {
    font-size: 1rem;
    font-weight: 200;
    color: rgb(0, 0, 0);
    line-height: 2;
}

.company-info h3{
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Lora';
    color: rgb(0, 6, 40);
}

.company-info p{
    font-size: 0.9rem;
    font-weight: 200;
    color: rgb(0, 0, 0);
}

.contacts-section-icon{
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    translate: 0 0.15rem;
}

.social-media-icons {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.social-media-icons img {
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.social-media-icons img:hover {
    transform: scale(1.5);
}

.info-row-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    caret-color: transparent;
}

.our-services-column,
.about-us-column {
    width: 50%;
}

.our-services-column h3, .about-us-column h3 {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: 'Lora';
    color: rgb(0, 6, 40);
}

.our-services-column ul, .about-us-column ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
    font-weight: 200;
}

.our-services-column li, .about-us-column li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: rgb(0, 0, 0);
    position: relative;
    cursor: pointer;
    transition: padding-left 0.3s ease;
}

.our-services-column li span, .about-us-column li span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.our-services-column li:hover, .about-us-column li:hover {
    padding-left: 1.25rem;
}

.our-services-column li:hover span, .about-us-column li:hover span {
    transform: translateX(0.5rem);
}

.our-services-column li a, .about-us-column li a {
    color: inherit;
    text-decoration: none;
}

/* Updated pseudo-element for growing line effect */
.our-services-column li::before, .about-us-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.5px;
    width: 0px;
    background-color: rgb(0, 6, 40);
    transition: width 0.2s ease;
}

.our-services-column li:hover::before, .about-us-column li:hover::before {
    width: 1rem;
    transition-delay: 0.1s;
}


.about-us-column {
    margin-left: 1rem;
}

.subscribe-form-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 3.5rem;
    position: relative;
}

.subscribe-form-container input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 200;
    border: 1px solid rgb(0, 6, 40);
    color: rgb(0, 6, 40);
    border-radius: 0.25rem;
    font-family: 'Public sans', serif;
}

.subscribe-form-container img {
    position: absolute;
    right: 1.5rem;
    height: 1.25rem;
    width: 1.25rem;
    transition: transform 0.3s ease;
}

.subscribe-form-container img:hover {
    transform: translateX(0.5rem);
}

.subscribe-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 200;
    color: rgb(0, 6, 40);
    display: flex;
    align-items: center;
}

.subscribe-note img {
    height: 2rem;
    width: 2rem;
    margin-right: 0.5rem;
    opacity: 0.75;
}

.bottom-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    height: 10vh;
    padding-right: 5rem;
    padding-left: 5rem;
    font-weight: 300;
}

.bottom-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 5rem;
    right: 5rem;
    height: 0.5px;
    background-color: rgba(0, 6, 40,0.5);
}

.bottom-left {
    flex: 1; 
    text-align: left;
}

.policy-link { 
    text-decoration: none; 
    margin-right: 0.5rem; 
    transition: color 0.3s ease;
    left: 5rem;
    color: rgba(0, 6, 40, 0.5);
    font-size: 0.6rem;
}

.policy-link:hover {
    color: #ccc; 
}

.bottom-middle {
    flex: 2;
    line-height: 1.5rem;
    align-items: center;
    text-align: center;
    color: rgba(0, 6, 40, 0.5.);
    font-size: 0.6rem;
}

.bottom-right {
    flex: 1; 
    text-align: right;
    font-size: 0.6rem;
    color: rgba(0, 6, 40, 0.5);
}

.bottom-right a{
    text-decoration: none;
    caret-color: transparent;
}

/*Media responsiveness*/
@media screen and (max-width: 768px) {
    .contacts-section {
        flex-direction: column;
        padding: 2rem;
        line-height: 1.75;
    }

    .contacts-section::after {
        display: none;
    }

    .bottom-logo {
        width: 10rem;
        padding-top: 1rem;
        align-items: center;
        text-align: center;
    }

    .top-left-container,
    .top-right-container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .top-left-container {
        margin-bottom: 0.5rem;
    }

    .top-right-container {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .info-row-container {
        flex-direction: column;
        width: 100%;
    }

    .our-services-column h3, .about-us-column h3 {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
        border-bottom: 1px solid rgba(0, 6, 40,0.15);
    }

    .subscribe-form-container {
        margin-top: 0.5rem;

    }

    .our-services-column,
    .about-us-column {
        display: none;
        opacity: 0;
        visibility: hidden;
    }

    .about-us-column {
        margin-left: 0;
    }

    .bottom-container {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
        height: auto;
        text-align: center;
    }

    .bottom-left,
    .bottom-middle,
    .bottom-right {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .bottom-left,
    .bottom-right {
        text-align: center;
    }

    .bottom-container::after {
        left: 1rem;
        right: 1rem;
    }

    .social-media-icons {
        display: flex;
        gap: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .contacts-section .message,
    .social-media-icons {
        border-bottom: 1px solid rgba(0, 6, 40,0.15);
    }
}